Player Transfer In
1. Request URL
URL: {APIURL}/api/v1/player/transferIn
2. Request Parameters:
| Parameter Name | Type | Description |
|---|---|---|
| UserID | string[4-40] | Operator’s unique player identifier |
| Amount | float | Transfer amount (> 0) |
| TraceId | string[4-40] | Transaction ID |
- Example:
复制{ "UserID": "user_id", "Amount": 123.45, "TraceId": "abc-def-gh" }
3. Return Result:
| Parameter Name | Type | Description |
|---|---|---|
| AfterBalance | float | Balance after successful transfer |
- Normal Return
- Example:
复制{ "error": "", "data": { "AfterBalance": 123.45 } } - Duplicate Order
- Example:
复制{ "error": "Order already exists", "data": null }